AVAIABLE FUNCTIONS: - autoUpdateOnOpen_UL('#_ATTRIBUTE[id]') This function update a html item and it childs, if the item was previously closed. The item needs to have a argument id. - autoUpdateOnClosed_UL('#_ATTRIBUTE[id]'); This function update a html item and it childs, if the item was previously open. The item needs to have a argument id. - autoUpdate('#_ATTRIBUTE[id]'); This function update a html item and it childs. The item needs to have a argument id. - rootAutoUpdate('#_ATTRIBUTE[id]') This function update the principal items of the tree, but you need to pass the correspondent argument id of the tree. - openAndCloseNode_UL('#_ATTRIBUTE[id]') show or hide the childs of an item with the correspondent argument id. - openNode_UL('#_ATTRIBUTE[id]') Show the childs of an item with the correspondent argument id. - closeNode_UL('#_ATTRIBUTE[id]') Hide the childs of an item with the correspondent argument id. - selectedLabelOfLi('#_ATTRIBUTE[id]') Select the labels of an LI item with the correspondent argument id. - changeClassNameById(obj_id,className) Change the class name of an object with the correspondent argument id. - replaceClassName(obj_id,classOut,classOver) Replace the class name out for the class name over of a object, with the correspondent argument id, if the object class name is classOver, or opposite if is classOut. - replaceClassNameIfUlIsOpenOrClose('#_ATTRIBUTE[id]',obj_id,classOpen,classClose) Replace the class name open for the class name close if the object is open or the opposite if the object is closed. - changeImage(obj_id,imgSrc) Change the source of an image - replaceImage(obj_id,imgOut,imgOver) Replace the image source for imgOver if the image source is imgOut or opposite. - replaceImageIfUlIsOpenOrClose('#_ATTRIBUTE[id]',obj_id,imgOpen,imgClose) Replace the image source if the tree item is open or closed. The tree item id is the first argument. EXAMPLES: - openAndCloseNode_UL('#_ATTRIBUTE[id]') - replaceClassName('icon_plus_#_ATTRIBUTE[id]','plus','minus') - replaceClassName('icon_folder_#_ATTRIBUTE[id]','tree-icon folderClosed','tree-icon folderOpen') - replaceClassNameIfUlIsOpenOrClose('#_ATTRIBUTE[id]','icon_plus_#_ATTRIBUTE[id]','minus','plus')